home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
raytrace
/
rayshade
/
graphtal.lzh
/
Graphtal.Amiga
/
rgb2rayshade.awk
< prev
next >
Wrap
Text File
|
1992-09-04
|
251b
|
11 lines
BEGIN { print "#ifndef COLORS_INC"
print "# define COLORS_INC\n"
}
{ printf "surface %-20s\n", $4
printf " diffuse %1.3g %1.3g %1.3g\n\n", $1/255, $2/255, $3/255
}
END { print "\n#endif COLORS_INC" }